blob: bbf6396822301677dc5a81bfa2f32f4835297b4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<script lang="ts" context="module">
export const load = ({
params: { id }
}) => ({ props: { id } });
</script>
<script lang="ts">
import { _ } from 'svelte-i18n';
import { post } from '$lib/stores/posts';
import Post from '$lib/components/post/post.svelte';
import ErrorBlock from '$lib/components/error_block/error_block.svelte';
import Loader from '$lib/components/loader/loader.svelte';
export let id: string;
$: postResponse = post(id, true);
</script>
<svelte:head>
<title>{$_('post.post')}}</title>
</svelte:head>
{#if $postResponse.loading}
<Loader />
{/if}
{#if $postResponse.error}
<ErrorBlock message={$_('post.error.unavailable')} />
{/if}
{#if $postResponse.data}
<Post post={$postResponse.data} />
{/if}
|